home *** CD-ROM | disk | FTP | other *** search
/ .net 1999 December / netCD65.iso / pc / Software / Construc / V4.0 / _SETUP.1 / Count Down.jss < prev    next >
Encoding:
Text File  |  1999-07-01  |  374 b   |  13 lines

  1. // Count down JavaScript
  2. // Create one text box called time and set it's initial value to 1 higher than what you want the viewer to see as it's initial value
  3. // In the onload event in the body tag, put the line "reduce()"
  4.  
  5. function reduce()
  6. {
  7. if(time.value != 0)
  8.     {
  9.     time.value=time.value-1;
  10.     window.setTimeout("reduce()", "1000");
  11.     }
  12. else window.clearTimeout;
  13. }